home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / gui / precog2_1.lha / Precognition2_1 / src / src.lha / SASme < prev   
Encoding:
Text File  |  1994-12-15  |  675 b   |  27 lines

  1. ; SMakeMe --
  2. ;    AmigaDOS script to rebuild All of precognition with SAS/C 6.51
  3. ;
  4. ; $VER: SMakeMe 2.2 (15.11.94)
  5. ;
  6. ; approx 37 minutes to compile everything on my A3000/16
  7. ;
  8. changetaskpri -1 ; let us do other things with higher priority while compiling
  9. ;
  10. ;    First create the /lib/precognition.lib linker library
  11. ;
  12. Date >StartTime.SAS
  13. ;
  14. cd Library
  15. Smake >ERRLOG.SAS ; keep a log file of compiler errors, etc.
  16. ;
  17. ;    Then create the //Precognition and //MultiWindowWriter Tools
  18. ;
  19. cd /Precognition
  20. Smake >ERRLOG.SAS ; keep a log file of compiler errors, etc.
  21. ;
  22. ;    Return to the src directory
  23. cd /
  24. ;
  25. changetaskpri 0 ; return back to normal priority
  26. Date >EndTime.SAS
  27. ; Done!